Package pl.wendigo.chrome.api.performance

Contains DevTools Protocol Performance domain implementation accessible via PerformanceDomain class.

Types

EnableRequest
Link copied to clipboard
data class EnableRequest(timeDomain: String?)
Represents request frame that can be used with Performance#enable operation call.
GetMetricsResponse
Link copied to clipboard
data class GetMetricsResponse(metrics: List<Metric>)
Represents response frame that is returned from Performance#getMetrics operation call.
Metric
Link copied to clipboard
data class Metric(name: String, value: Double)
Run-time execution metric.
MetricsEvent
Link copied to clipboard
data class MetricsEvent(metrics: List<Metric>, title: String) : Event
Current values of the metrics.
PerformanceDomain
Link copied to clipboard
class PerformanceDomain : Domain
PerformanceDomain represents Performance protocol domain request/response operations and events that can be captured.
SetTimeDomainRequest
Link copied to clipboard
data class SetTimeDomainRequest(timeDomain: String)
Represents request frame that can be used with Performance#setTimeDomain operation call.